Next: Header arguments in Org-mode properties, Previous: Language-specific header arguments, Up: Using header arguments
Buffer-wide header arguments may be specified through the use
of a special line placed anywhere in an Org-mode file. The line
consists of the #+BABEL: keyword followed by a
series of header arguments which may be specified using the
standard header argument syntax.
For example the following would set session to
*R*, and results to silent
for every code block in the buffer, ensuring that all execution
took place in the same session, and no results would be inserted
into the buffer.
#+BABEL: :session *R* :results silent